home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gmp-132.lha / gmp-1.3.2 / mpz_sub_ui.c < prev    next >
C/C++ Source or Header  |  1993-05-02  |  2KB  |  85 lines

  1. /* mpz_sub_ui -- Subtract an unsigned one-word integer from an MP_INT.
  2.  
  3. Copyright (C) 1991 Free Software Foundation, Inc.
  4.  
  5. This file is part of the GNU MP Library.
  6.  
  7. The GNU MP Library is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2, or (at your option)
  10. any later version.
  11.  
  12. The GNU MP Library is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with the GNU MP Library; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. #include "gmp.h"
  22. #include "gmp-impl.h"
  23.  
  24. void
  25. #ifdef __STDC__
  26. mpz_sub_ui (MP_INT *dif, const MP_INT *min, mp_limb sub)
  27. #else
  28. mpz_sub_ui (dif, min, sub)
  29.      MP_INT *dif;
  30.      const MP_INT *min;
  31.      mp_limb sub;
  32. #endif
  33. {
  34.   mp_srcptr minp;
  35.   mp_ptr difp;
  36.   mp_size minsize, difsize;
  37.   mp_size abs_minsize;
  38.  
  39.   minsize = min->size;
  40.   abs_minsize = ABS (minsize);
  41.  
  42.   /* If not space for SUM (and possible carry), increase space.  */
  43.   difsize = abs_minsize + 1;
  44.   if (dif->alloc < difsize)
  45.     _mpz_realloc (dif, difsize);
  46.  
  47.   /* These must be after realloc (ADD1 may be the same as SUM).  */
  48.   minp = min->d;
  49.   difp = dif->d;
  50.  
  51.   if (sub == 0)
  52.     {
  53.       MPN_COPY (difp, minp, abs_minsize);
  54.       dif->size = minsize;
  55.       return;
  56.     }
  57.   if (abs_minsize == 0)
  58.     {
  59.       difp[0] = sub;
  60.       dif->size = -1;
  61.       return;
  62.     }
  63.  
  64.   if (minsize < 0)
  65.     {
  66.       difsize = mpn_add (difp, minp, abs_minsize, &sub, 1);
  67.       if (difsize != 0)
  68.     difp[abs_minsize] = 1;
  69.       difsize = -(difsize + abs_minsize);
  70.     }
  71.   else
  72.     {
  73.       /* The signs are different.  Need exact comparision to determine
  74.      which operand to subtract from which.  */
  75.       if (abs_minsize == 1 && minp[0] < sub)
  76.     difsize = -(abs_minsize
  77.             + mpn_sub (difp, &sub, 1, minp, 1));
  78.       else
  79.     difsize = (abs_minsize
  80.            + mpn_sub (difp, minp, abs_minsize, &sub, 1));
  81.     }
  82.  
  83.   dif->size = difsize;
  84. }
  85.